home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 3 / Info_Mac_1994-01.iso / Science / Gnuplot 3.5 / docs / latextut / makefile-0 < prev    next >
Makefile  |  1993-11-03  |  566b  |  31 lines

  1. # Makefile for gnuplot LaTeX tutorial
  2. # To make the manual from scratch, we run latex two times
  3. all: tutorial.dvi done
  4.  
  5. done:
  6.     latex tutorial
  7.     echo > done
  8.  
  9. # To touch it up after changes:
  10. remake: tutorial.dvi
  11.  
  12. # Always runs latex, e.g., to get labels right
  13. force:
  14.     latex tutorial
  15.  
  16. tutorial.dvi: eg1.tex eg2.tex eg3.tex eg4.tex eg5.tex eg6.tex linepoin.tex \
  17.     tutorial.tex header.tex
  18.     latex tutorial
  19.     rm -f done
  20.  
  21. .SUFFIXES: .tex .plt
  22.  
  23. .plt.tex:
  24.     gnuplot $<
  25.  
  26. clean:
  27.     rm -f *~ *.log eg?.tex linepoin.tex
  28.  
  29. spotless:
  30.     rm -f *~ *.log *.aux *.dvi eg?.tex linepoin.tex done
  31.